ilert · Example Payload

Post Teams {Id} Members

Incident ManagementOn-Call AlertingAlert RoutingEscalation PoliciesOn-Call SchedulesStatus PagesHeartbeat MonitoringEvent ManagementDevOpsSREIT Operations

Post Teams {Id} Members is an example object payload from ilert, with 7 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

summarydescriptionmethodpathparametersrequest_bodyresponse

Example Payload

Raw ↑
{
  "summary": "Add a new team member to specific team",
  "description": "",
  "method": "POST",
  "path": "/teams/{id}/members",
  "parameters": {
    "id": 1.0
  },
  "request_body": {
    "user": {
      "id": 1,
      "firstName": "string",
      "lastName": "string",
      "email": "string",
      "timezone": null,
      "position": "string"
    },
    "role": "STAKEHOLDER"
  },
  "response": {
    "user": {
      "id": 1,
      "firstName": "string",
      "lastName": "string",
      "email": "string",
      "timezone": null,
      "position": "string"
    },
    "role": "STAKEHOLDER"
  }
}